Subject: {FIRSTNAME}, What an Operating System Does Hello {FIRSTNAME}, I hope you enjoyed the second course on history of operating systems, next we are going to look at what an operating system does. Here is a recap of the e-course schedule: Part 1: What is an Operating System Part 2: History of Operating Systems Part 3: What an Operating System Does Part 4: Microsoft Windows Part 5: Mac OS Part 6: UNIX Part 7: Linux With that being said... Lets get rolling shall we :) ================================================== Part 3: What an Operating System Does -------------------------------------------------- As a user, you normally interact with the operating system through a set of commands. For example, the DOS operating system contains commands such as COPY and RENAME for copying files and changing the names of files, respectively. The commands are accepted and executed by a part of the operating system called the command processor or command line interpreter. Graphical user interfaces allow you to enter commands by pointing and clicking at objects that appear on the screen. But that really doesn’t address the various ways that operating systems make your computer work easier and more efficiently. Their specific capacities are what make them help your computer operate as a user-friendly device. Let’s look specifically at what an operating system does. Process Management Every program running on a computer whether it is a background service or an application is called a process. As long as von Neumann architecture is used to build a computer, only one process per CPU can be run at one time. Older computer operating systems such as MS-DOS did not try to bypass this limit with the exception of interrupt processing and only one process could be run under them. Mainframe operating systems have had multi-tasking capabilities since the early 1960’s. Modern operating systems enable concurrent execution of many processes at once via multi-tasking even with one CPU. Process management is an operating system’s way of dealing with running multiple processes at once. Since most computers contain one processor with one core, multi-tasking is done by simply switching processes quickly. Depending on the operating system, as more processes run, either each time slice will become smaller or there will be a longer delay before each process given a chance to run. Process management involves computing and distributing CPU time as well as other resources. Most operating systems allow a process to be assigned a priority which affects its allocation of CPU time. Interactive operating systems also employ some level of feedback in which the task with which the user is working receives higher priority. Interrupt driven processes will normally run at a very high priority. In many systems, there is a background process such as the System Idle Process in Windows which will run when no other process is waiting for the CPU. For more information about operating systems, please refer to my website Take Care,